home *** CD-ROM | disk | FTP | other *** search
- *** orig/scan.l Sat Jun 20 18:35:56 1992
- --- scan.l Sat Jun 20 18:38:34 1992
- ***************
- *** 28,34 ****
- --- 28,38 ----
- *************************************************************************/
-
- #include "bcdefs.h"
- + #ifdef atarist
- + #include "y_tab.h"
- + #else
- #include "y.tab.h"
- + #endif
- #include "global.h"
- #include "proto.h"
-
- ***************
- *** 104,110 ****
- \+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
- "\n" { line_no++; return(NEWLINE); }
- \\\n { line_no++; /* ignore a "quoted" newline */ }
- ! [ \t]+ { /* ignore spaces and tabs */ }
- "/*" {
- int c;
-
- --- 108,114 ----
- \+\+|-- { yylval.c_value = yytext[0]; return(INCR_DECR); }
- "\n" { line_no++; return(NEWLINE); }
- \\\n { line_no++; /* ignore a "quoted" newline */ }
- ! [ \t\r]+ { /* ignore spaces and tabs and carriage returns. was: [ \t]+ */ }
- "/*" {
- int c;
-
-